home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / pcc / v04n08 / wrksmt.exe / LIB.BAT < prev    next >
DOS Batch File  |  1991-07-10  |  391b  |  19 lines

  1. @ECHO OFF
  2. ECHO This batch file lets you label
  3. ECHO a floppy and sorts and copies
  4. ECHO its directory into a file called
  5. ECHO DIRSORT.DOC in your word processor.
  6. :START
  7. ECHO Put the floppy in drive A:...
  8. PAUSE
  9. CLS
  10. DIR A:/W
  11. LABEL A:
  12. DIR A:|SORT >> C:\WP\DIRSORT.DOC
  13. CLS
  14. ECHO Disk cataloged--Press Ctrl-C
  15. ECHO to end or any key to catalog
  16. ECHO another floppy.
  17. PAUSE
  18. GOTO START
  19.